home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / programr / vbasic / receipt.exe / ABOUTDLG.FRM next >
Text File  |  1993-07-22  |  1KB  |  51 lines

  1. VERSION 2.00
  2. Begin Form Form9 
  3.    AutoRedraw      =   -1  'True
  4.    Caption         =   "Pen Windows Demo"
  5.    ClientHeight    =   1530
  6.    ClientLeft      =   1695
  7.    ClientTop       =   1530
  8.    ClientWidth     =   4530
  9.    FontBold        =   0   'False
  10.    FontItalic      =   0   'False
  11.    FontName        =   "Arial"
  12.    FontSize        =   9.75
  13.    FontStrikethru  =   0   'False
  14.    FontUnderline   =   0   'False
  15.    Height          =   1935
  16.    Left            =   1635
  17.    LinkMode        =   1  'Source
  18.    LinkTopic       =   "Form9"
  19.    ScaleHeight     =   6.375
  20.    ScaleMode       =   4  'Character
  21.    ScaleWidth      =   37.75
  22.    Top             =   1185
  23.    Width           =   4650
  24.    Begin CommandButton Command1 
  25.       Caption         =   "OK"
  26.       Height          =   375
  27.       Left            =   3720
  28.       TabIndex        =   0
  29.       Top             =   120
  30.       Width           =   615
  31.    End
  32. End
  33.  
  34. Sub Command1_Click ()
  35.    Unload Form9
  36. End Sub
  37.  
  38. Sub Command1_GotFocus ()
  39.    Print "Demo for Microsoft Windows"
  40.    Print "with Pen Support!!!"
  41.    Print
  42.    Print "This demo was developed by"
  43.    Print "the Basic Languages Product"
  44.    Print "Support Unit."
  45. End Sub
  46.  
  47. Sub Form_Click ()
  48.    Unload Form9
  49. End Sub
  50.  
  51.